1   /*
2    * Copyright (c) 1996, 2005, Oracle and/or its affiliates. All rights reserved.
3    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4    *
5    * This code is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU General Public License version 2 only, as
7    * published by the Free Software Foundation.  Oracle designates this
8    * particular file as subject to the "Classpath" exception as provided
9    * by Oracle in the LICENSE file that accompanied this code.
10   *
11   * This code is distributed in the hope that it will be useful, but WITHOUT
12   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14   * version 2 for more details (a copy is included in the LICENSE file that
15   * accompanied this code).
16   *
17   * You should have received a copy of the GNU General Public License version
18   * 2 along with this work; if not, write to the Free Software Foundation,
19   * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20   *
21   * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22   * or visit www.oracle.com if you need additional information or have any
23   * questions.
24   */
25  
26  /*
27   * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
28   * (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
29   *
30   * The original version of this source code and documentation
31   * is copyrighted and owned by Taligent, Inc., a wholly-owned
32   * subsidiary of IBM. These materials are provided under terms
33   * of a License Agreement between Taligent and Sun. This technology
34   * is protected by multiple US and International patents.
35   *
36   * This notice and attribution to Taligent may not be removed.
37   * Taligent is a registered trademark of Taligent, Inc.
38   *
39   */
40  
41  package sun.text.resources;
42  
43  import java.util.ListResourceBundle;
44  
45  public class FormatData_zh extends ListResourceBundle {
46      /**
47       * Overrides ListResourceBundle
48       */
49      protected final Object[][] getContents() {
50          return new Object[][] {
51              { "MonthNames",
52                  new String[] {
53                      "\u4e00\u6708", // january
54                      "\u4e8c\u6708", // february
55                      "\u4e09\u6708", // march
56                      "\u56db\u6708", // april
57                      "\u4e94\u6708", // may
58                      "\u516d\u6708", // june
59                      "\u4e03\u6708", // july
60                      "\u516b\u6708", // august
61                      "\u4e5d\u6708", // september
62                      "\u5341\u6708", // october
63                      "\u5341\u4e00\u6708", // november
64                      "\u5341\u4e8c\u6708", // december
65                      "" // month 13 if applicable
66                  }
67              },
68              { "MonthAbbreviations",
69                  new String[] {
70                      "\u4e00\u6708", // abb january
71                      "\u4e8c\u6708", // abb february
72                      "\u4e09\u6708", // abb march
73                      "\u56db\u6708", // abb april
74                      "\u4e94\u6708", // abb may
75                      "\u516d\u6708", // abb june
76                      "\u4e03\u6708", // abb july
77                      "\u516b\u6708", // abb august
78                      "\u4e5d\u6708", // abb september
79                      "\u5341\u6708", // abb october
80                      "\u5341\u4e00\u6708", // abb november
81                      "\u5341\u4e8c\u6708", // abb december
82                      "" // abb month 13 if applicable
83                  }
84              },
85              { "DayNames",
86                  new String[] {
87                      "\u661f\u671f\u65e5", // Sunday
88                      "\u661f\u671f\u4e00", // Monday
89                      "\u661f\u671f\u4e8c", // Tuesday
90                      "\u661f\u671f\u4e09", // Wednesday
91                      "\u661f\u671f\u56db", // Thursday
92                      "\u661f\u671f\u4e94", // Friday
93                      "\u661f\u671f\u516d" // Saturday
94                  }
95              },
96              { "DayAbbreviations",
97                  new String[] {
98                      "\u661f\u671f\u65e5", // abb Sunday
99                      "\u661f\u671f\u4e00", // abb Monday
100                     "\u661f\u671f\u4e8c", // abb Tuesday
101                     "\u661f\u671f\u4e09", // abb Wednesday
102                     "\u661f\u671f\u56db", // abb Thursday
103                     "\u661f\u671f\u4e94", // abb Friday
104                     "\u661f\u671f\u516d" // abb Saturday
105                 }
106             },
107             { "AmPmMarkers",
108                 new String[] {
109                     "\u4e0a\u5348", // am marker
110                     "\u4e0b\u5348" // pm marker
111                 }
112             },
113             { "Eras",
114                 new String[] { // era strings
115                     "\u516c\u5143\u524d",
116                     "\u516c\u5143"
117                 }
118             },
119             { "DateTimePatterns",
120                 new String[] {
121                     "ahh'\u65f6'mm'\u5206'ss'\u79d2' z", // full time pattern
122                     "ahh'\u65f6'mm'\u5206'ss'\u79d2'", // long time pattern
123                     "H:mm:ss", // medium time pattern
124                     "ah:mm", // short time pattern
125                     "yyyy'\u5e74'M'\u6708'd'\u65e5' EEEE", // full date pattern
126                     "yyyy'\u5e74'M'\u6708'd'\u65e5'", // long date pattern
127                     "yyyy-M-d", // medium date pattern
128                     "yy-M-d", // short date pattern
129                     "{1} {0}" // date-time pattern
130                 }
131             },
132         };
133     }
134 }